home *** CD-ROM | disk | FTP | other *** search
/ The National Palace Museum Experience / The National Palace Museum Experience.iso / Programs / Credit.dxr / 00002.ls < prev    next >
Encoding:
Text File  |  1998-11-19  |  737 b   |  30 lines

  1. on prepareMovie
  2.   cursor(200)
  3. end
  4.  
  5. on startMovie
  6.   set the keyDownScript to "QuitMovie"
  7.   set the mouseDownScript to "quit"
  8. end
  9.  
  10. on pan
  11.   set sprite1 to 1
  12.   set sprite2 to 2
  13.   set panostep to 2
  14.   set panowidth to the width of sprite sprite1
  15.   set the locH of sprite sprite1 to the locH of sprite sprite1 - panostep
  16.   set the locH of sprite sprite2 to the locH of sprite sprite2 - panostep
  17.   if the right of sprite sprite1 < 640 then
  18.     set the locH of sprite sprite2 to the right of sprite sprite1 - panostep
  19.   end if
  20.   if the right of sprite sprite2 < 640 then
  21.     set the locH of sprite sprite1 to the right of sprite sprite2 - panostep
  22.   end if
  23. end
  24.  
  25. on quitmovie
  26.   if (the key = "q") and the commandDown then
  27.     quit()
  28.   end if
  29. end
  30.